home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 14 / Hot Mix 14.iso / HTML / vendors / finesse / examples / sh / hello_name1 < prev    next >
Text File  |  1996-06-27  |  437b  |  20 lines

  1. #! /bin/sh
  2. # FINESSEAPPLICATIONKEY sNPFbfBGunPB_
  3.  
  4. . ${FINESSEPATH-/usr/local/finesse}/fsshinit
  5.  
  6. windef="
  7. FsWindow  -btype o;                      
  8. FsLabel   -label 'Please enter your name:';
  9. FsText    -label Name: -var name; 
  10. FsSeparator;"                              # (0)
  11.  
  12. Fsopen
  13.  
  14. Fsdisplay -w "$windef" -m "Hello!"         # window 1
  15.  
  16. Fsdisplay -w "FsWindow -btype o;"\
  17.           -m "Hello $name"                 # window 2
  18.  
  19. Fsclose
  20.